home *** CD-ROM | disk | FTP | other *** search
/ Georgia Wildfire Prevention / Georgia Wildfire Prevention.iso / pc / media / dirs / BackUp / WhatIsFire.dir / 00010_Script_flame_code < prev    next >
Text File  |  2002-10-15  |  282b  |  22 lines

  1. property spritenum,mysprite,state
  2.  
  3. on new me
  4.   mysprite=sprite(spritenum)
  5.   state=0  
  6. end
  7.  
  8. on turn_on me,x
  9.   if x=4 then 
  10.     mysprite.loch=(-2000)
  11.     state=1
  12.   end if
  13. end
  14.  
  15. on exitframe me
  16.   if state=1 and soundbusy(1)=0 then
  17.     go the frame+1
  18.   end if
  19. end
  20.  
  21.  
  22.